home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / tr.dir / 00087_P1LogIn.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  465 b   |  28 lines

  1. on keyDown
  2.   if the key = RETURN then
  3.     EnterNewChamps()
  4.     set the visible of sprite 45 to 0
  5.     StartNewGame()
  6.     dontPassEvent()
  7.   else
  8.     if the key = 9 then
  9.       doTab()
  10.     else
  11.       pass()
  12.     end if
  13.   end if
  14. end
  15.  
  16. on doTab
  17.   if the frameLabel = "TwoHighScores" then
  18.     set the editableText of sprite 43 to 0
  19.     set the editableText of sprite 44 to 1
  20.   else
  21.     dontPassEvent()
  22.   end if
  23. end
  24.  
  25. on mouseDown
  26.   set the editableText of sprite 43 to 1
  27. end
  28.